ASP.NET Core MVC Controls | ComponentOne
C1.Web.Mvc Namespace / FlexGridBase<T> Class / AnchorCursor Property






In This Topic
    AnchorCursor Property (FlexGridBase<T>)
    In This Topic
    Gets or sets a value that determines whether extending selections with the mouse or keyboard should change the start (cursor) or the end of the current selection.
    Syntax
    'Declaration
     
    
    <System.ComponentModel.DefaultValueAttribute(False)>
    Public Overridable Property AnchorCursor As System.Boolean
    'Usage
     
    
    Dim instance As FlexGridBase(Of T)
    Dim value As System.Boolean
     
    instance.AnchorCursor = value
     
    value = instance.AnchorCursor
    [System.ComponentModel.DefaultValue(false)]
    public virtual System.bool AnchorCursor {get; set;}
    public read-write property AnchorCursor: System.Boolean; virtual; 
    System.ComponentModel.DefaultValueAttribute()
    public function get,set AnchorCursor : System.boolean
    [System.ComponentModel.DefaultValue(false)]
    public: __property virtual System.bool get_AnchorCursor();
    public: __property virtual void set_AnchorCursor( 
       System.bool value
    );
    [System.ComponentModel.DefaultValue(false)]
    public:
    virtual property System.bool AnchorCursor {
       System.bool get();
       void set (    System.bool value);
    }
    Remarks
    The default value for this property is false, which causes the grid to move the cursor and keep the selection end anchored.
    See Also